From 901eef1bb131604e320558f92bc3dd9d45210096 Mon Sep 17 00:00:00 2001 From: Tim Deegan Date: Tue, 20 Feb 2007 20:49:44 +0000 Subject: [PATCH] [HVM] Fix MMIO AND emulation which was falling though into AND... Signed-off-by: Tim Deegan --- xen/arch/x86/hvm/io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/arch/x86/hvm/io.c b/xen/arch/x86/hvm/io.c index e2e8e35afe..677c20c9d5 100644 --- a/xen/arch/x86/hvm/io.c +++ b/xen/arch/x86/hvm/io.c @@ -554,6 +554,7 @@ static void hvm_mmio_assist(struct cpu_user_regs *regs, ioreq_t *p, diff = (unsigned long) p->data & value; set_reg_value(size, index, 0, regs, diff); } + break; case INSTR_ADD: if (src & REGISTER) { -- 2.30.2